home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / inet.h < prev    next >
C/C++ Source or Header  |  1989-06-23  |  1KB  |  40 lines

  1. /*
  2.  * inet.h --
  3.  *
  4.  *    This file defines constants for the Internet Protocols server (inet).
  5.  *
  6.  * Copyright 1987, 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  *
  15.  * $Header: /sprite/src/lib/include/RCS/inet.h,v 1.3 89/06/23 11:30:20 rab Exp $ SPRITE (Berkeley)
  16.  */
  17.  
  18. #ifndef _INET
  19. #define _INET
  20.  
  21. /*
  22.  * Names of the various socket devices. The %s should be filled in with
  23.  * host name.
  24.  */
  25.  
  26. #define INET_STREAM_NAME_FORMAT    "/hosts/%s/netTCP"
  27. #define INET_DGRAM_NAME_FORMAT    "/hosts/%s/netUDP"
  28. #define INET_RAW_NAME_FORMAT    "/hosts/%s/netIP"
  29.  
  30.  
  31. /*
  32.  * Port numbers below INET_PRIV_PORTS are reserved to processes with super-user
  33.  * privileges. Port numbers above INET_SERVER_PORTS are reserved for servers.
  34.  */
  35.  
  36. #define INET_PRIV_PORTS        1024
  37. #define INET_SERVER_PORTS    5000
  38.  
  39. #endif /* _INET */
  40.